#include using namespace std; // escape sequence // \n new line char, or carriage return void main() { cout << "Hi\tmom\\\n" << 345 << endl; // variable declaration // data type // int can only hold whole numbers // int 4 bytes 1 bit to represent +-, 31 bits for the number int x; //assignment x = 99; //initialize a variable - giving it its first value int y = 100; cout << x << " " << y << endl; //integer division cout << x/y << endl; //float 4 bytes float i = 1; float j = 3; cout << i/j << endl; }